home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / openoffice / program / unopkg < prev    next >
Text File  |  2008-10-15  |  5KB  |  179 lines

  1. #!/bin/sh
  2. #*************************************************************************
  3. #
  4. #   OpenOffice.org - a multi-platform office productivity suite
  5. #
  6. #   $RCSfile: unopkg.sh,v $
  7. #
  8. #   $Revision: 1.6.48.3 $
  9. #
  10. #   last change: $Author: rt $ $Date: 2008/01/14 15:55:26 $
  11. #
  12. #   The Contents of this file are made available subject to
  13. #   the terms of GNU Lesser General Public License Version 2.1.
  14. #
  15. #
  16. #     GNU Lesser General Public License Version 2.1
  17. #     =============================================
  18. #     Copyright 2005 by Sun Microsystems, Inc.
  19. #     901 San Antonio Road, Palo Alto, CA 94303, USA
  20. #
  21. #     This library is free software; you can redistribute it and/or
  22. #     modify it under the terms of the GNU Lesser General Public
  23. #     License version 2.1, as published by the Free Software Foundation.
  24. #
  25. #     This library is distributed in the hope that it will be useful,
  26. #     but WITHOUT ANY WARRANTY; without even the implied warranty of
  27. #     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  28. #     Lesser General Public License for more details.
  29. #
  30. #     You should have received a copy of the GNU Lesser General Public
  31. #     License along with this library; if not, write to the Free Software
  32. #     Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  33. #     MA  02111-1307  USA
  34. #
  35. #*************************************************************************
  36.  
  37. # enable file locking
  38. SAL_ENABLE_FILE_LOCKING=1
  39. export SAL_ENABLE_FILE_LOCKING
  40.  
  41. # resolve installation directory
  42. sd_cwd="`pwd`"
  43. if [ -h "$0" ] ; then
  44.     sd_basename=`basename "$0"`
  45.      sd_script=`ls -l "$0" | sed "s/.*${sd_basename} -> //g"` 
  46.     cd "`dirname "$0"`"
  47.     cd "`dirname "$sd_script"`"
  48. else
  49.     cd "`dirname "$0"`"
  50. fi
  51.  
  52. sd_prog="`pwd`"
  53.  
  54. cd ..
  55. sd_binary=`basename "$0"`".bin"
  56. sd_inst="`pwd`"
  57.  
  58. # change back directory
  59. cd "$sd_cwd"
  60.  
  61. # check if all required patches are installed
  62. if [ -x "$sd_prog/sopatchlevel.sh" ]; then
  63.     "$sd_prog/sopatchlevel.sh"
  64.     if [ $? -eq 1 ]; then
  65.         exit 0
  66.     fi
  67. fi
  68.  
  69. # set search path for shared libraries
  70. sd_platform=`uname -s`
  71. case $sd_platform in
  72.   AIX)
  73.     LIBPATH=${sd_prog}${LIBPATH+:${LIBPATH}}
  74.     export LIBPATH
  75.     ;;
  76.  
  77.   Darwin)
  78.     DYLD_LIBRARY_PATH=${sd_prog}${DYLD_LIBRARY_PATH+:${DYLD_LIBRARY_PATH}}
  79.     export DYLD_LIBRARY_PATH
  80.     ;;
  81.  
  82.   HP-UX)
  83.     SHLIB_PATH=${sd_prog}:/usr/openwin/lib${SHLIB_PATH+:${SHLIB_PATH}}
  84.     export SHLIB_PATH
  85.     ;;
  86.  
  87.   IRIX*)
  88.     LD_LIBRARYN32_PATH=${sd_prog}${LD_LIBRARYN32_PATH+:${LD_LIBRARYN32_PATH}}
  89.     export LD_LIBRARYN32_PATH
  90.     ;;
  91.  
  92.   *)
  93.     LD_LIBRARY_PATH=${sd_prog}${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}
  94.     export LD_LIBRARY_PATH
  95.     ;;
  96. esac
  97.  
  98. isshared=0
  99. for arg in $@
  100. do
  101. if [ "$arg" = "--shared" ]; then 
  102.     isshared=1
  103. fi
  104. done
  105. if [ $isshared -eq 1 ]; then
  106.     echo $@ | grep -q env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY
  107.     if [ $? -ne 0 ]; then
  108.         set -- $@ '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
  109.     fi
  110.     echo $@ | grep -q env:UNO_JAVA_JFW_INSTALL_DATA
  111.     if [ $? -ne 0 -a -w $sd_prog/../share/config/javasettingsunopkginstall.xml ]; then
  112.         set -- $@ '-env:UNO_JAVA_JFW_INSTALL_DATA=$$ORIGIN/../share/config/javasettingsunopkginstall.xml'
  113.     fi
  114.     echo $@ | grep -q env:UserInstallation
  115.     if [ $? -ne 0 ]; then
  116.         INSTDIR=`/bin/mktemp -d -t unoinstall.XXXXXX`
  117.         set -- $@ '-env:UserInstallation=file://'$INSTDIR
  118.     fi
  119. fi
  120.  
  121. #collect all bootstrap variables specified on the command line
  122. #so that they can be passed as arguments to javaldx later on
  123. for arg in $@
  124. do
  125.   case "$arg" in
  126.        -env:*) BOOTSTRAPVARS=$BOOTSTRAPVARS" ""$arg";;
  127.   esac
  128. done
  129.  
  130. # extend the ld_library_path for java: javaldx checks the sofficerc for us
  131. unset java_ld_library_path
  132. if [ -x "$sd_prog/javaldx" ] ; then
  133.     java_ld_library_path=`"$sd_prog/javaldx" $BOOTSTRAPVARS`
  134. elif [ -x "$sd_prog/../ure-link/javaldx" ] ; then
  135.     java_ld_library_path=`"$sd_prog/../ure-link/javaldx" $BOOTSTRAPVARS`
  136. fi
  137. if [ "$java_ld_library_path" != "" ] ; then
  138.     case $sd_platform in
  139.         AIX)
  140.             LIBPATH=${java_ld_library_path}:${LIBPATH}
  141.             ;;
  142.         Darwin)
  143.             DYLD_LIBRARY_PATH=${java_ld_library_path}:${DYLD_LIBRARY_PATH}
  144.             ;;
  145.         HP-UX)
  146.             SHLIB_PATH=${java_ld_library_path}:${SHLIB_PATH}
  147.             ;;
  148.         IRIX*)
  149.             LD_LIBRARYN32_PATH=${java_ld_library_path}:${LD_LIBRARYN32_PATH}
  150.             ;;
  151.         *)
  152.             LD_LIBRARY_PATH=${java_ld_library_path}:${LD_LIBRARY_PATH}
  153.             ;;
  154.     esac
  155. fi
  156.  
  157. # misc. environment variables
  158. OPENOFFICE_MOZILLA_FIVE_HOME="$sd_inst/program"
  159. export OPENOFFICE_MOZILLA_FIVE_HOME
  160.  
  161. unset XENVIRONMENT
  162.  
  163. # uncomment line below to disable anti aliasing of fonts
  164. # SAL_ANTIALIAS_DISABLE=true; export SAL_ANTIALIAS_DISABLE
  165.  
  166. # set path so that other apps can be started just by name
  167. PATH="$sd_prog":$PATH
  168. export PATH
  169.  
  170. # assume gui mode if passed a single oxt file as argument
  171. GUI=""
  172. [ $# -eq 1 -a "oxt" = "`echo $1 | cut -d . -f 2`" -a -n "$DISPLAY" ] && GUI="gui"
  173.  
  174. # execute binary
  175. "$sd_prog/$sd_binary" $GUI "$@"
  176. if [ -n "$INSTDIR" ]; then
  177.    rm -rf $INSTDIR
  178. fi
  179.